您好,我使用wx.uploadfile时,只有当关闭过域名检查和https检查时会有“工具未校验请求域名、TLS 版本以及 HTTPS 证书”的提醒,就没有别的提醒了。
我调用wx.uploadfile后,检查服务器日志也没有没有访问日志,是这段调用代码写错了吗? 为何没有任何提醒和服务器响应?
success、fail、complete三个回调都没有给回我状态码,我在想这个函数是不是没有成功调用,但是没有成功调用为什么又会有“工具未校验请求域名、TLS 版本以及 HTTPS 证书”的提醒呢?
formUpload: function(e){
var that = this;
wx.uploadFile({
url: 'https://open.server.com/platform/upload', //仅为测试 也关闭过域名检查和https检查,使用http://来接收上传文件
filePath: tempFilePath,
name: 'filekey',
header: {
'content-type': 'multipart/form-data'
},
formData: {
'user': 'This is a voice.'
},
success: function (res) {
that.setData({
name: 'Success uploaded',
Status: 'Uploaded recode voice.',
outputValue: res.data,
errorValue: res.statusCode
});
},
fail:function(res){
that.setData({
errorValue: res.statusCode
});
},
complete:function(res){
that.setData({
errorValue: res.statusCode
});
}
});
},